home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / PUTSCR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  262 b   |  11 lines

  1. #include <mem.h>
  2. #include <dos.h>
  3.  
  4. #define VIDMODE   *(unsigned char far *) 0x00449lu
  5. #define VIDSEGREG (unsigned)((7 == VIDMODE) ? 0xb000 : 0xb800 )
  6.  
  7. void PutScreen( char *buffer )
  8. {
  9.     movedata( FP_SEG(buffer), FP_OFF(buffer), VIDSEGREG, 0, 4000 );
  10. }
  11.